body{
	--main_bg: #fcfcfc;
	--dark: hsla(240, 20%, 16%, 1);
	--sec_bg: #ffffff;
	--main_fg: hsla(233, 25%, 56%, 1);
	--sec_fg: #000;
	font-family: "Computer Modern Sans", sans-serif;
	font-style: oblique;
}

.light_main_container{
	height: 100%;
	display: flex;
	flex-direction: column;
}

.light_page_container{
	display: flex;
	flex-direction: column;
	flex-grow: 1;
}

.light_navbar{
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: stretch;
	background-color: var(--sec_bg);
	color: var(--sec_fg);
	font-weight: bold;
	font-size: 15pt;
	border-bottom: 1px solid black;
}

.light_navbar_section{
	display: flex;
	flex-direction: row;
	align-items: stretch;
	flex-grow: 1;
}

.light_navbar_item{
	background-color: transparent;
	padding: 25px;
	cursor: pointer;
}

.light_navbar_item:hover{
	background-color: rgba(0, 0, 0, 0.2);
}

.light_page_container{
	background-color: var(--main_bg);
}

.light_main_page_row{
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #333;
	justify-content: space-evenly;
	padding: 2.5vh 25px 2.5vh 25px;
}

.light_main_page_row_title{
	font-size: 3.5vh;
	display: inline-block;
}

.light_main_page_row_content{
	display: inline-block;
	font-size: 2.4vh;
	width: 90%;
	padding-top: 1.5vh;
	font-style: normal;
}

.light_main_page_row > button > span{
	display: none;
}

.light_main_page_row > button {
	font-size: 20px;
	cursor: pointer;
	background-color: white;
	border: 1px solid black;
	padding: 10px;
	font-weight: 200;
	font-family: "Poppins", sans-serif;
	transition: background-color 0.3s, width 0.3s, height 0.3s, margin-top 0.3s;
	align-self: flex-end;
	width: 2vh;
	height: 2vh;
	overflow-x: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
	box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.6);
	position: absolute;
	right: 20px;
}

.light_main_page_row > button:hover{
	background-color: rgba(0, 0, 0, 0.075);
	width: 135px;
	height: 40px;
}

.light_main_page_row > button > div{
	top: -5px;
	left: -10px;
	position: relative;
	width: 135px;
}

.light_main_page_row > button::-webkit-scrollbar { 
    display: none;
}


.light_proj_page_row{
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #333;
	justify-content: space-evenly;
	padding: 0vh 25px 0vh 25px;
	height: 15vh;
}

.light_proj_page_row_title{
	font-size: 2.5vh;
	display: inline-block;
}

.light_proj_page_row_content{
	display: inline-block;
	font-size: 1.8vh;
	width: 90%;
	padding-top: 1.5vh;
	font-style: normal;
}

.light_proj_page_row > button > span{
	display: none;
}

.light_proj_page_row > button {
	font-size: 20px;
	cursor: pointer;
	background-color: white;
	border: 1px solid black;
	padding: 10px;
	font-weight: 200;
	font-family: "Poppins", sans-serif;
	transition: background-color 0.3s, width 0.3s, height 0.3s, margin-top 0.3s;
	align-self: flex-end;
	width: 2vh;
	height: 2vh;
	overflow-x: scroll;
	-ms-overflow-style: none;
	scrollbar-width: none;
	box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.6);
	position: absolute;
	right: 20px;
}

.light_proj_page_row > button:hover{
	background-color: rgba(0, 0, 0, 0.075);
	width: 135px;
	height: 40px;
}

.light_proj_page_row > button > div{
	top: -5px;
	left: -10px;
	position: relative;
	width: 135px;
}

.light_proj_page_row > button::-webkit-scrollbar { 
    display: none;
}